home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / programming / other / tandem / projects / asmfiles / test06.asm < prev    next >
Assembly Source File  |  1999-09-06  |  325b  |  14 lines

  1. * immediate mode addressing
  2.  
  3.  rts                  ;4E75
  4. fred:
  5.  nop                  ;4E71
  6.  move.l #fred,d0      ;203C00000002
  7.  move.l #bill,d0      ;203C0000001E
  8.  move.l #$12345678,d0 ;203C12345678
  9.  move.w #$1234,d0     ;303C1234
  10.  move.b #$12,d0       ;103C0012
  11. bill:
  12.  rol.l #1,d1          ;E399
  13.  rol.l #8,d1          ;E199
  14.